﻿/* ######################################################################
   #####                                                            #####
   #####                    ESTILOS PRÓPRIOS                        #####
   #####                                                            #####
   ######################################################################
*/

a {
	color: #0088cc;
}

a:hover {
	color: #015c89;
    outline: medium none;
}

a.disabled {
    pointer-events: none;
    opacity: .65;
    cursor: default;
}

a.disabled .icone-warning,
a.disabled .icone-success,
a.disabled .icone-primary,
a.disabled .icone-info,
a.disabled .icone-danger {
    color: #CCC;
}

a.active,
.active > a {
    color: #015c89;
    font-weight: bold;
}


body {
	background: #FFF;
}

.animar-background,
.botao-icone,
.dropdown-menu > li > a,
.nav > li > a {
	transition-duration: 0.2s !important;
    transition-property: all !important;
    transition-timing-function: ease-out !important;
}

.banner-inicio {
    width: 100%;
    padding: 30px;
    position: relative;
    text-align: center;
    box-shadow: 0 1px 5px 0 #4a4a4a;
}

.banner-inicio img {
    max-width: 300px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.banner-inicio .fundo {
    background-image: url('../img/fundo.jpg');
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 4px;
} 

.barra-opcoes {
    border-top: 1px solid #DDD;
    padding: 15px 0;
    text-align: right;
}

.balao-topo-direita:before {
	content: "";
	border-bottom: 8px solid #FFF;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    display: inline-block !important;
    left: auto;
	right: 10px;
	top: -8px;
    position: absolute;
}

.botao-icone {
	float: left !important;
	width: 32px !important;
	height: 32px !important;
	margin: 0 2px !important;
	padding: 0 !important;
	text-align: center !important;
	outline:none !important;
    background-color: #2D2D2D;
    border-radius: 5px;
}

.botao-icone .material-icons {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	vertical-align: middle;
}

.botao-icone:focus {
	color: inherit !important;
	outline:none !important;
}

.btnSubir {
    background: #000;
    opacity: .25;
    border: 0 none;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition-duration: 0.2s !important;
    transition-property: opacity !important;
    transition-timing-function: ease-out !important;
    outline:none !important;
    display: none;
}

.btnSubir i {
    color: #FFF;
}

.btnSubir:hover {
    opacity: .5;
}

.carregando {
    position: relative;
    opacity: .5;        
}

.carregando::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../img/carregando.gif") no-repeat center center;
    top: 0;
    left: 0;
}

input.carregando,
select.carregando,
textarea.carregando {    
    background: url("../img/carregando.gif") no-repeat center center;
    background-size: 16px 16px;
    pointer-events: none;
}

.cabecalho {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #0d0d0d;
   
}

.conteudo {
    position: relative;
    padding-top: 10px;
    /*border-top: 2px solid #ededed;*/
}

.degrade {
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=10, finishopacity=80, style=2);
	background: radial-gradient(circle, rgba(0,0,0,.1), rgba(0,0,0,.8));
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    border-radius: 4px;
}

.coluna-menu.aberto {
	left: 0;
}

.espacamento {
    margin: 15px;
}

.grid-icone {
    text-align: center;
    display: inline-block;
    margin: 5px;
}

.grid-icone i, .grid-icone small {
    width: 100%;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}

h2 {
    font-size: 28px;
}

.icone-danger {
    color: #d9534f;
}

.icone-danger:hover,
.icone-danger:focus,
.icone-danger.focus,
.icone-danger:active,
.icone-danger.active {
    color: #c9302c;
}

.icone-dropdown {
	color: #CCC;
	vertical-align: middle;
	margin-right: 15px;
}

.icone-info {
    color: #5bc0de;
}

.icone-info:hover,
.icone-info:focus,
.icone-info.focus,
.icone-info:active,
.icone-info.active {
    color: #31b0d5;
}

.icone-primary,
.icone-success {
    color: #00923F;
}

.icone-primary:hover,
.icone-primary:focus,
.icone-primary.focus,
.icone-primary:active,
.icone-primary.active,
.icone-success:hover,
.icone-success:focus,
.icone-success.focus,
.icone-success:active,
.icone-success.active {
    color: #007933;
}

.icone-warning {
    color: #f0ad4e;
}

.icone-warning:hover,
.icone-warning:focus,
.icone-warning.focus,
.icone-warning:active,
.icone-warning.active {
    color: #ec971f;
}

.icone-warning.disabled,
.icone-success.disabled,
.icone-primary.disabled,
.icone-info.disabled,
.icone-danger.disabled {
    color: #CCC;
}

.icone-facebook {
    background-image: url('../img/icone-facebook-cinza.png');
    background-position: center center;
	background-repeat: no-repeat;
}

.icone-facebook:hover {
	background-color: #3b559f !important;
	background-image: url('../img/icone-facebook-branco.png');
	outline: none !important;
}

.icone-instagram {
    background-image: url('../img/icone-instagram-cinza.png');
    background-position: center center;
    background-repeat: no-repeat;
}

.icone-instagram:hover {
    background-color: #d82b7b !important;
    background-image: url('../img/icone-instagram-branco.png');
    outline: none !important;
}


.icone-twitter {
    background-image: url('../img/icone-tweeter-cinza.png');
    background-position: center center;
	background-repeat: no-repeat;
}

.icone-twitter:hover {
	background-color: #29aae3 !important;
	background-image: url('../img/icone-tweeter-branco.png');
	outline: none !important;
}

.icone-youtube {
    background-image: url('../img/icone-youtube-cinza.png');
    background-position: center center;
	background-repeat: no-repeat;
}

.icone-youtube:hover {
	background-color: #c2191e !important;
	background-image: url('../img/icone-youtube-branco.png');
	outline: none !important;
}

.icone-rss {
    background-image: url('../img/icone-rss-cinza.png');
    background-position: center center;
	background-repeat: no-repeat;
}

.icone-rss:hover {
	background-color: #ff6600 !important;
	background-image: url('../img/icone-rss-branco.png');
	outline: none !important;
}

.info-usuario {
	position: relative;
	padding: 15px 70px 15px 70px;
	background-image: url('../img/perfil.png');
	background-position: 15px center;
	background-repeat: no-repeat;
	border-bottom: 1px solid #DDD;
}

.info-usuario .botao-icone {
	position: absolute; 
	right: 15px;
	top: 0;
	bottom: 0;
	margin: auto 0 !important;
}

.info-usuario .dados .nome {
	font-weight: bold;
	display: block;
}

label.obrigatorio:after,
p.obrigatorio:before {
    content: "*";
    color: #a94442;
}

label.obrigatorio:after {
    margin-left: 3px;
}

label.well {
    font-weight: normal;
    width: 100%;
    margin-bottom: 0;
}

.midias-sociais {
    padding: 15px;
}

.menu-principal .submenu {
	display: none;
    position: absolute;
    z-index: 9999;
    min-width: 100%;
}

.menu-principal .submenu li a {
	border-bottom: 1px solid #CCC;
    white-space: nowrap;
}

#modalCarregando {
    overflow: hidden;
}

#modalCarregando .modal-dialog {
    width: 100%;
    top: 50%;
    margin-top: -70px;
}

#modalCarregando .modal-dialog .modal-content {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}

#modalCarregando .modal-dialog .modal-content .carregando {
    height: 80px;
    width: 100%;
}

.nav > li > a:hover,
.nav > li > a:focus {
    background-color: #AB9451;
}

p.obrigatorio:before {
    margin-right: 3px;
}

p.obrigatorio {
    font-style: italic;
}

.rodape {
	text-align: center;
    background: #0D0D0D;
	color: #fff;
    padding: 15px;
    margin: 0;
}

.sombra {
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

.titulo-brasao {
	width: 34px;
	height: 40px;
}

.titulo-nome {
	font-size: 15px;
}

.titulo-sigla {
	font-size: 25px;
}

.titulo-sigla, .titulo-nome {
	display: block;
	margin-left: 64px;
	vertical-align: middle;
}

.panel-texto-cor {
    background: #eee none repeat scroll 0 0;
    border-radius: 3px;
}
.panel-aviso {
    background: #eee none repeat scroll 0 0;
    border-radius: 3px;
    padding: 10px;
    margin-top: 15px;
}
.panel-operacoes {
    border-bottom: 1px solid #DDD;
    margin-bottom: 5px;
}

td.dica {
    width: 200px;
    white-space: normal !important;
}

td.dica > a {
    display: block;
    width: 200px;
    overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: nowrap;
}

/* ######################################################################
   #####                                                            #####
   #####                      BOOTSTRAP                             #####
   #####                                                            #####
   ######################################################################
*/

a:focus {
    color: inherit;
}

a.bg-success:hover {
  background-color: #007933;
}

a.text-primary:hover {
    color: #007933;
}

.bg-success {
  background-color: #00923F;
}

.breadcrumb {
	background: transparent;
	padding: 0;
    font-size: 12px;
    margin-bottom: 10px;
}

.breadcrumb > .active {
	color: #999;
}

.btn-default, .btn-success, .btn-info, .btn-warning, .btn-danger {
    border: 1px solid transparent;
    border-radius: 0;
}

.btn-default {
    background-color: #fff;
    border-color: #ccc;
    color: #333;
}

.btn-success,
.btn-primary {
    background-color: #00923f;    
    color: #fff;
}

.btn-success:hover,
.btn-success:focus,
.btn-primary:hover,
.btn-primary:focus {
    background-color: #007933;
}

.carousel-indicators {
    bottom: -10px;
}

.carousel-caption {
    padding-bottom: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.dropdown-menu > li > a {
	padding: 5px 15px;
}

.dropdown-menu > li > a:focus, 
.dropdown-menu > li > a:hover {
    background-color: #DDD;
}

fieldset {
    margin-bottom: 15px;
}

@-moz-document url-prefix() {
    fieldset {
        display: table-cell;
    }
}

fieldset:last-child {
    margin: 0;
}

fieldset > legend > [data-toggle='collapse'] > i:first-child {
    display: none;
}

fieldset > legend > [data-toggle='collapse'] > i {
    width: 24px;
    height: 24px;
    color: #FFF;
    background: #00923F;
    border-radius: 15px;
    text-align: center;
    vertical-align: middle;
}

fieldset > legend > .collapsed > i:first-child {
    display: inline-block;
}

fieldset > legend > .collapsed > i:last-child {
    display: none;
}

fieldset > legend > [data-toggle='collapse'] {
    cursor: pointer;
    user-select: none;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome/Safari/Opera */
    -khtml-user-select: none;    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
}

.form-control:focus {
    border-color: rgba(0, 102, 44, 0.8) !important;
    box-shadow: 0 1px 1px rgba(0, 122, 53, 0.075) inset, 0 0 8px rgba(0, 122, 53, 0.6) !important;
    outline: 0 none !important;
}

.panel-title {
    background-color: #ededed;
    border-bottom: 2px solid #dddddd;
    border-top: 2px solid #6c8391;
    color: #333333;
    font-size: 1.2em;
    line-height: 1.4em;
    padding: 5px 15px;
}

legend {
    font-size: 1.2em;
    color: #00923F;
}

.glyphicon.icone-lg { 
	font-size: 48px; 
}

.glyphicon.icone-md { 
	font-size: 36px; 
}

.glyphicon.icone-sm { 
	font-size: 24px; 
}

.glyphicon.icone-xs { 
	font-size: 18px; 
}

hr {
    border-color: #DDD;
    margin-top: 15px;
    margin-bottom: 15px;
}

.input-group-addon {
    padding: 0 12px;
}

.navbar {
    min-height: 0;
    margin-bottom: 0;
}

.navbar-collapse {
    padding: 0;
}

.navbar-default,
.submenu {
	background-color: #bea55a;
    box-shadow: 0px 0px 10px 0px #000;
    
    border: none
}

.navbar-default .navbar-nav > li {
    border-right: 1px solid #a38e4d;
}


.navbar-default .navbar-nav li a {
    color: #333;
    padding: 12px 15px;
    font-size: 15px;
}

.navbar-default .navbar-nav li a:hover, .navbar-default .navbar-nav li a:active {
    background-color: #AB9451;
}

.navbar-default .navbar-nav li a:active {
    font-weight:bold
}

.navbar-header {
    text-align: center;
    padding: 0;
}


.nav-pills.nav-stacked {
    margin-bottom: 0;
}

.nav-tabs,
.nav-tabs.nav-justified {
    border-bottom: 1px solid #DDD;
}

.nav-tabs,
.nav-pills {
    margin-bottom: 15px;
}

.nav-tabs > li > a,
.nav-pills > li > a,
.nav-tabs.nav-justified > li > a {
    border: 1px solid transparent;
}

.nav-tabs > li > a:hover,
.nav-pills > li > a:hover,
.nav-tabs.nav-justified > li > a:hover {
    border: 1px solid transparent;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus,
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus,
.nav-tabs.nav-justified > li.active > a,
.nav-tabs.nav-justified > li.active > a:hover,
.nav-tabs.nav-justified > li.active > a:focus {
    color: inherit;
    cursor:default;
    background-color:#EDEDED;
    border: 1px solid transparent;
    outline: none;
        
}


.navbar-toggle {
    float: none;
    text-align: center;
    margin-right: 0;
}

.pagination {
    margin-top: 0;
    margin-bottom: 15px;
}

.pagination > li > a,
.pagination > li > span {
  color: #333;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #333;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: #00923F;
  border-color: #007933;
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #CCC;
}

.panel {
    border: 1px solid #DDD;
}

.panel > .panel-body > ul.nav.menu {
    margin: -15px;
    background-color: #f6f5f5;
    border-bottom: 3px solid #dddddd;
    text-decoration: none;
}

.panel > .panel-body > ul.nav.menu > li > a {
    border-bottom: 1px dashed #dddddd;
    padding: 5px;
}

.panel > .panel-body > ul.nav.menu > li.active > a {
    background: #ededed;
}

.panel > .panel-body > ul.nav.menu > li > a:hover {
    background: #ededed;
}

.menu-wrapper .main-menu ul.sf-menu > li {
    position: relative;
    display: inline-block;
    float: left;
    border-right: 1px solid #a38e4d;
}

.panel-body .panel-footer {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -15px;
}

.panel-footer {
    padding: 15px;
    text-align: right;
}

.panel-heading {
    padding: 0;
}

.text-primary {
    color: #00923F;
}

.thumbnail {
    border: 0px;
    margin-bottom: 0;
}

/* ######################################################################
   #####                                                            #####
   #####                       Media Querys                         #####
   #####                                                            #####
   ######################################################################
*/

@media (max-width: 767px) {
    .midias-sociais {
        text-align: center;
    }

    .midias-sociais ul,
    .midias-sociais ul > li {
        display: inline-block;
    }

    .navbar {
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 999999999;
    }

    .navbar-default .navbar-nav > li {
        border-right: 0 none;
        border-bottom: 1px solid #CCC;
    }

    .cabecalho {
        margin-top: 50px;
    }

    .logo{
        text-align: center;
    }

    .logo a {
        display: inline-block;
    }

    .menu-principal .submenu {
        display: none;
        min-width: 100%;
        position: static;
        z-index: 9999;
    }

    .submenu {
        background: #CCC;
    }

    .submenu li {
        border-bottom: 1px solid #BBB;
    }
}

/* ######################################################################
   #####                                                            #####
   #####                        Datepicker                          #####
   #####                                                            #####
   ######################################################################
*/

/*
    Personalização da cor da data selecionada.
*/
.datepicker table tr td.active:active, 
.datepicker table tr td.active.highlighted:active, 
.datepicker table tr td.active.active, 
.datepicker table tr td.active.highlighted.active,
.datepicker table tr td.active:active:hover, 
.datepicker table tr td.active.highlighted:active:hover, 
.datepicker table tr td.active.active:hover, 
.datepicker table tr td.active.highlighted.active:hover, 
.datepicker table tr td.active:active:focus, 
.datepicker table tr td.active.highlighted:active:focus, 
.datepicker table tr td.active.active:focus, 
.datepicker table tr td.active.highlighted.active:focus, 
.datepicker table tr td.active.focus:active, 
.datepicker table tr td.active.highlighted.focus:active, 
.datepicker table tr td.active.active.focus, 
.datepicker table tr td.active.highlighted.active.focus  {
    background-color: #00923f;
}

/*
    Correção de BUG na largura do .input-daterange
*/
.input-daterange {
    width: auto;
}

/*
    Correção de BUG no .input-group-addon do .input-daterange
*/
.input-daterange .input-group-addon {
    border-width: 1px;
    padding: 0px 12px;
}

/*
    Correção de BUG no tamanho do .input-group do .input-daterange
*/
.input-daterange .input-group {
    width: 100%;
}

/*
    Correção de BUG no alinhamento do input do .input-daterange
*/
.input-daterange input {
    text-align: left;
}

/* ######################################################################
   #####                                                            #####
   #####                        Datatables                          #####
   #####                                                            #####
   ######################################################################
*/

/*
    Correção de BUG no header da tabela, que fica desalinhado quando a tabela muda de tamanho.
*/
div.dataTables_scroll {
    overflow-x: auto;
    position: relative;
}

/*
    Correção de BUG no header da tabela, que fica desalinhado quando a tabela muda de tamanho.
    !!!NÃO FUNCIONA QUANDO A TELA DIMINUI MUITO DE TAMANHO!!!
*/
/*.dataTables_scrollHeadInner,
.dataTables_scrollHeadInner table {
    width: 100% !important;
}*/

/*
    Correções no posicionamento do ícone de ordenação da tabela.
*/
table.dataTable thead .sorting::after, 
table.dataTable thead .sorting_asc::after, 
table.dataTable thead .sorting_desc::after, 
table.dataTable thead .sorting_asc_disabled::after,
table.dataTable thead .sorting_desc_disabled::after {
    display: inline-block;
    position: static;
    margin-left: 5px;
    vertical-align: middle;
}

/*
    Correções no posicionamento do ícone de ordenação da tabela.
*/
table.dataTable thead > tr > th.sorting_asc, 
table.dataTable thead > tr > th.sorting_desc, 
table.dataTable thead > tr > th.sorting, 
table.dataTable thead > tr > td.sorting_asc, 
table.dataTable thead > tr > td.sorting_desc, 
table.dataTable thead > tr > td.sorting {
    padding-right: 8px;
}

/*
    Corrige datatables com ScrollX no IE9
*/
div.dataTables_scrollBody {
    width: 800px;
    margin: 0 auto;
    min-height: 0;
}

div.dataTables_wrapper {
    padding: 15px 0;
}

/*
    Correção do estilo da label no componente dataTables
*/
div.dataTables_wrapper div.dataTables_length label {
    font-weight: bold;
}

@media screen and (max-width: 992px) {
  div.dataTables_wrapper div.dataTables_filter,
  div.dataTables_wrapper div.dataTables_info,
  div.dataTables_wrapper div.dataTables_paginate {
    text-align: center;
  }
}